 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            scroll-behavior: smooth;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
        
        /* Header */
        .header {
            box-shadow: 0 4px 12px 0 rgba(0,0,0,.05);
            border-bottom: 1px solid #e2e8f0;
            background: white;
        }
        
        /* Search bar */
        .search-bar {
            box-shadow: 0 2px 8px 0 rgba(0,0,0,.05);
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(.25,.8,.25,1);
        }
        
        .search-bar:focus-within {
            box-shadow: 0 4px 16px 0 rgba(0,0,0,.1);
        }
        
        /* Category nav */
        .category-item {
            transition: all 0.3s ease;
            color: #64748b;
        }
        
        .category-item:hover {
            color: #3b82f6;
            transform: translateY(-2px);
        }
        
        .category-item.active {
            color: #3b82f6;
            position: relative;
        }
        
        .category-item.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #3b82f6;
        }
        
        /* Product cards */
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(.25,.8,.25,1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #3b82f6;
        }
        
        .product-img {
            height: 180px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        
        .discount-badge {
            background: linear-gradient(to right, #10b981, #34d399);
            color: white;
            border-radius: 4px;
            padding: 2px 6px;
            font-size: 11px;
            font-weight: 500;
        }
        
        .add-to-cart {
            background: linear-gradient(to right, #3b82f6, #60a5fa);
            color: white;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .add-to-cart:hover {
            background: linear-gradient(to right, #2563eb, #3b82f6);
            transform: translateY(-1px);
        }
        
        /* Hero banner */
        .hero-banner {
            height: 320px;
            background-image: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1998&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideRight {
            from { transform: translateX(-20px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .animate-fadeIn {
            animation: fadeIn 0.5s ease-out forwards;
        }
        
        .animate-slideRight {
            animation: slideRight 0.6s ease-out forwards;
        }
        
        /* Modal */
        .modal {
            backdrop-filter: blur(5px);
        }
        
        /* Notification */
        .notification {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.3s ease-out forwards;
        }
        
        /* Cart sidebar */
        .cart-sidebar {
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }
        
        /* Discount banner */
        .discount-banner {
            transition: transform 0.3s ease;
        }
        
        .discount-banner:hover {
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-banner {
                height: 200px;
            }
            
            .product-img {
                height: 120px;
            }
        }